home *** CD-ROM | disk | FTP | other *** search
/ Technotools / Technotools (Chestnut CD-ROM)(1993).ISO / editors / me_cd / asc.mut < prev    next >
Encoding:
Text File  |  1988-08-11  |  113 b   |  7 lines

  1.     ;; convert n to ASCII string
  2. (defun asc (int n) (array byte str 2) HIDDEN
  3. {
  4.   (str 0 n)(str 1 0)
  5.   str
  6. })
  7.